type crypto/tls.clientHelloMsg
28 uses
crypto/tls (current package)
conn.go#L1107: m = new(clientHelloMsg)
handshake_client.go#L32: hello *clientHelloMsg
handshake_client.go#L42: func (c *Conn) makeClientHello() (*clientHelloMsg, *ecdh.PrivateKey, error) {
handshake_client.go#L73: hello := &clientHelloMsg{
handshake_client.go#L281: func (c *Conn) loadSession(hello *clientHelloMsg) (
handshake_client_tls13.go#L23: hello *clientHelloMsg
handshake_messages.go#L70: type clientHelloMsg struct {
handshake_messages.go#L100: func (m *clientHelloMsg) marshal() ([]byte, error) {
handshake_messages.go#L320: func (m *clientHelloMsg) marshalWithoutBinders() ([]byte, error) {
handshake_messages.go#L337: func (m *clientHelloMsg) updateBinders(pskBinders [][]byte) error {
handshake_messages.go#L369: func (m *clientHelloMsg) unmarshal(data []byte) bool {
handshake_messages.go#L370: *m = clientHelloMsg{raw: data}
handshake_server.go#L27: clientHello *clientHelloMsg
handshake_server.go#L132: func (c *Conn) readClientHello(ctx context.Context) (*clientHelloMsg, error) {
handshake_server.go#L139: clientHello, ok := msg.(*clientHelloMsg)
handshake_server.go#L936: func clientHelloInfo(ctx context.Context, c *Conn, clientHello *clientHelloMsg) *ClientHelloInfo {
handshake_server_tls13.go#L28: clientHello *clientHelloMsg
handshake_server_tls13.go#L507: clientHello, ok := msg.(*clientHelloMsg)
handshake_server_tls13.go#L535: func illegalClientHelloChange(ch, ch1 *clientHelloMsg) bool {
key_agreement.go#L27: generateServerKeyExchange(*Config, *Certificate, *clientHelloMsg, *serverHelloMsg) (*serverKeyExchangeMsg, error)
key_agreement.go#L34: processServerKeyExchange(*Config, *clientHelloMsg, *serverHelloMsg, *x509.Certificate, *serverKeyExchangeMsg) error
key_agreement.go#L35: generateClientKeyExchange(*Config, *clientHelloMsg, *x509.Certificate) ([]byte, *clientKeyExchangeMsg, error)
key_agreement.go#L45: func (ka rsaKeyAgreement) generateServerKeyExchange(config *Config, cert *Certificate, clientHello *clientHelloMsg, hello *serverHelloMsg) (*serverKeyExchangeMsg, error) {
key_agreement.go#L77: func (ka rsaKeyAgreement) processServerKeyExchange(config *Config, clientHello *clientHelloMsg, serverHello *serverHelloMsg, cert *x509.Certificate, skx *serverKeyExchangeMsg) error {
key_agreement.go#L81: func (ka rsaKeyAgreement) generateClientKeyExchange(config *Config, clientHello *clientHelloMsg, cert *x509.Certificate) ([]byte, *clientKeyExchangeMsg, error) {
key_agreement.go#L169: func (ka *ecdheKeyAgreement) generateServerKeyExchange(config *Config, cert *Certificate, clientHello *clientHelloMsg, hello *serverHelloMsg) (*serverKeyExchangeMsg, error) {
key_agreement.go#L275: func (ka *ecdheKeyAgreement) processServerKeyExchange(config *Config, clientHello *clientHelloMsg, serverHello *serverHelloMsg, cert *x509.Certificate, skx *serverKeyExchangeMsg) error {
key_agreement.go#L360: func (ka *ecdheKeyAgreement) generateClientKeyExchange(config *Config, clientHello *clientHelloMsg, cert *x509.Certificate) ([]byte, *clientKeyExchangeMsg, error) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |